home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / spchauto / data1.cab / Samples / Visual_C++ / SpellCheckerOCX / ReadMe.txt next >
Encoding:
Text File  |  1999-07-16  |  3.8 KB  |  88 lines

  1. This is a dialog-based sample application, written in Visual C++ 5.0, using Polar
  2. SpellChecker ActiveX control. It demonstrates use of four SpellChecker methods:
  3. OpenDictionary, IsWordExists, GetSuggestion and AddWord. SpellChecker in this case 
  4. opens English (United States) dictionary (SpellUS.lex). All other dictionaries
  5. are available from http://www.polarsoftware.com/download.html
  6.  
  7. ========================================================================
  8.        MICROSOFT FOUNDATION CLASS LIBRARY : SpellChecker
  9. ========================================================================
  10.  
  11.  
  12. AppWizard has created this SpellChecker application for you.  This application
  13. not only demonstrates the basics of using the Microsoft Foundation classes
  14. but is also a starting point for writing your application.
  15.  
  16. This file contains a summary of what you will find in each of the files that
  17. make up your SpellChecker application.
  18.  
  19. SpellChecker.h
  20.     This is the main header file for the application.  It includes other
  21.     project specific headers (including Resource.h) and declares the
  22.     CSpellCheckerApp application class.
  23.  
  24. SpellChecker.cpp
  25.     This is the main application source file that contains the application
  26.     class CSpellCheckerApp.
  27.  
  28. SpellChecker.rc
  29.     This is a listing of all of the Microsoft Windows resources that the
  30.     program uses.  It includes the icons, bitmaps, and cursors that are stored
  31.     in the RES subdirectory.  This file can be directly edited in Microsoft
  32.     Developer Studio.
  33.  
  34. res\SpellChecker.ico
  35.     This is an icon file, which is used as the application's icon.  This
  36.     icon is included by the main resource file SpellChecker.rc.
  37.  
  38. res\SpellChecker.rc2
  39.     This file contains resources that are not edited by Microsoft 
  40.     Developer Studio.  You should place all resources not
  41.     editable by the resource editor in this file.
  42.  
  43. SpellChecker.clw
  44.     This file contains information used by ClassWizard to edit existing
  45.     classes or add new classes.  ClassWizard also uses this file to store
  46.     information needed to create and edit message maps and dialog data
  47.     maps and to create prototype member functions.
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. AppWizard creates one dialog class:
  53.  
  54. SpellCheckerDlg.h, SpellCheckerDlg.cpp - the dialog
  55.     These files contain your CSpellCheckerDlg class.  This class defines
  56.     the behavior of your application's main dialog.  The dialog's
  57.     template is in SpellChecker.rc, which can be edited in Microsoft
  58.     Developer Studio.
  59.  
  60.  
  61. /////////////////////////////////////////////////////////////////////////////
  62. Other standard files:
  63.  
  64. StdAfx.h, StdAfx.cpp
  65.     These files are used to build a precompiled header (PCH) file
  66.     named SpellChecker.pch and a precompiled types file named StdAfx.obj.
  67.  
  68. Resource.h
  69.     This is the standard header file, which defines new resource IDs.
  70.     Microsoft Developer Studio reads and updates this file.
  71.  
  72. /////////////////////////////////////////////////////////////////////////////
  73. Other notes:
  74.  
  75. AppWizard uses "TODO:" to indicate parts of the source code you
  76. should add to or customize.
  77.  
  78. If your application uses MFC in a shared DLL, and your application is 
  79. in a language other than the operating system's current language, you
  80. will need to copy the corresponding localized resources MFC40XXX.DLL
  81. from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,
  82. and rename it to be MFCLOC.DLL.  ("XXX" stands for the language abbreviation.
  83. For example, MFC40DEU.DLL contains resources translated to German.)  If you
  84. don't do this, some of the UI elements of your application will remain in the
  85. language of the operating system.
  86.  
  87. /////////////////////////////////////////////////////////////////////////////
  88.